C++のfor文はCと同じ。
#include <iostream>
int main() {
int i;
for (i = 0; i <= 5; i++) {
std::cout << "Hello Would" << i << std::endl;
}
return 0;
}
C++のfor文はCと同じ。
#include <iostream>
int main() {
int i;
for (i = 0; i <= 5; i++) {
std::cout << "Hello Would" << i << std::endl;
}
return 0;
}
コメント