Teaching Newbies since 2014

kauress

  • Home
  • Javascript ❤
    • JavaScript
    • Node.js
  • WebDev Tuts
  • screencasts
  • Resources
  • VR & AR
  • Contact
  • Github
  • Twitter
  • YouTube
  • RSS
  • C++
You are here: Home / C++ / C++ Tingz

December 28, 2019 by: Kauress

C++ Tingz

Notes from Udacity’s C++ Nanodegree
Function to print out even numbers
/* Inside the int main function there is a while loop there is an if conditional statement within the while loop the function willl print out even numbers from 1- 10 So long as OR while i is less than 10 */ int main()
{
// Write your code here.
int i = 1;
while(i <= 10) {
if(i % 2 == 0) {
cout << i << “\n”;
}
i++;
}
}

Twitter Bootstrap in #virtualreality using Unity3D
VR Dev w/ me: Part 1

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Copyright © 2021 ·Kauress