Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab5(2)

Snippet info

Language

Cpp

Visibility

public

Author

misha127831

Created

2018-11-27T06:57:28Z

Updated

2018-11-27T06:57:28Z

#include <iostream>
using namespace std;

int main() {
    int n=30;
    for(int i=1; i<=n; i++){
        if (n%i==0){
            cout<<i<<endl;
        }
    }
}
INFO