This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* A simple program to sequentially turn on and turn off 12 LEDs */ | |
int LED1 = 13; | |
int LED2 = 12; | |
int LED3 = 11; | |
int LED4 = 10; | |
int LED5 = 9; | |
int LED6 = 8; | |
int LED7 = 7; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javafx.scene.input.KeyCode; | |
import javax.swing.*; | |
import javax.xml.soap.Text; | |
import java.awt.event.KeyAdapter; | |
import java.awt.event.KeyEvent; | |
import java.security.Key; | |
public class Test extends JFrame { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<bits/stdc++.h> | |
using namespace std; | |
int main() | |
{ | |
long long pow=1; | |
long long n=1; | |
while(cin >> n >> pow && pow && n) |
NewerOlder