Contoh program C++ Decrement - TeachMeSoft

Contoh program C++ Decrement



Contoh program C++ Decrement, dalam program ini karena nilai tidak mencapai kurang dari 10 maka akan terus terjadi looping (tak hingga)

 Source code


#include <iostream>

using namespace std;

main(){
    int a;
    for (a=0; a<10; a--){
        cout<<"Fakultas Teknologi Informasi dan Elektro"<<endl;
    }

}


 Output 








Disqus comments