标签: c++ for-loop
我想打印一个减少5的Sequential 使用for循环 但我不知道它为什么不打印输出:(
#include<bits/stdc++.h> using namespace std; int main(){ for(int j=60;j<=0;j-=5){ cout<<j<<endl; } }
什么是错的?!
答案 0 :(得分:6)
将其更改为
for(int j=60;j>=0;j-=5){ ^^